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..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,7 +1,7 @@ // 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 +// 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 +169,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 +585,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 +833,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..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,7 +1,7 @@ // 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 +// 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..9c04ce55f611 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperations.cs @@ -0,0 +1,211 @@ +// 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. + +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..48829a894563 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/GeographicHierarchiesOperationsExtensions.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 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..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,7 +1,7 @@ // 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 +// 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..30e17dc7d664 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/IGeographicHierarchiesOperations.cs @@ -0,0 +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.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..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,7 +1,7 @@ // 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 +// 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..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,9 +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.15.0.0 +// 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; @@ -80,5 +79,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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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 +15,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 +28,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 +41,7 @@ public Endpoint() { } EndpointLocation = endpointLocation; EndpointMonitorStatus = endpointMonitorStatus; MinChildEndpoints = minChildEndpoints; + GeoMapping = geoMapping; } /// @@ -94,17 +95,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 +125,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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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 +47,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..094423cb2c56 --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/Region.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 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..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,7 +1,7 @@ // 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 +// 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..c3b38282d3df --- /dev/null +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Generated/Models/TrafficManagerGeographicHierarchy.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. +// +// 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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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 +133,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 +850,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 +1080,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 +1216,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..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,7 +1,7 @@ // 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 +// 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..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,7 +1,7 @@ // 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 +// 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 +84,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 +270,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..e07e602f85de 100644 --- a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [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: AssemblyFileVersion("2.2.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd b/src/ResourceManagement/TrafficManager/Microsoft.Azure.Management.TrafficManager/generate.cmd index 100da7f0c7f0..6d1589716271 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/776baa315cfda36195fe4b7f38f56e6fa34f1819/arm-trafficmanager/2017-03-01/swagger/trafficmanager.json" ) else ( set specFile="%1" ) 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(); 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": {